What is the difference between .tostring(), Convert.tostring()? Sumit Kesarwani256220-Nov-2014c#c# .net string Updated on 22-Sep-2020
Sumit Kesarwani
20-Nov-2014The basic difference between them is “Convert” function handles NULLS while
“.ToString()” does not it will throw a NULL reference exception error. So as a good coding
practice using “convert” is always safe.